Skip to content

Bump the "bundler" group with 5 updates across multiple ecosystems#998

Merged
tagliala merged 1 commit into
masterfrom
dependabot/bundler-abb4754b92
Apr 1, 2026
Merged

Bump the "bundler" group with 5 updates across multiple ecosystems#998
tagliala merged 1 commit into
masterfrom
dependabot/bundler-abb4754b92

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 1, 2026

Bumps the bundler group with 6 updates:

Package From To
rails 8.1.2 8.1.3
mocha 3.0.2 3.1.0
minitest 6.0.2 6.0.3
rubocop 1.85.1 1.86.0
actionpack 8.1.2 8.1.3
railties 8.1.2 8.1.3

Updates rails from 8.1.2 to 8.1.3

Release notes

Sourced from rails's releases.

8.1.3

Active Support

  • Fix JSONGemCoderEncoder to correctly serialize custom object hash keys.

    When hash keys are custom objects whose as_json returns a Hash, the encoder now calls to_s on the original key object instead of on the as_json result.

    Before: hash = {CustomKey.new(123) => "value"} hash.to_json # => {"{:id=>123}":"value"}

    After: hash.to_json # => {"custom_123":"value"}

    Dan Sharp

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

Active Model

  • Fix Ruby 4.0 delegator warning when calling inspect on attributes.

    Hammad Khan

  • Fix NoMethodError when deserialising Type::Integer objects marshalled under Rails 8.0.

    The performance optimisation that replaced @range with @max/@min broke Marshal compatibility. Objects serialised under 8.0 (with @range) and deserialised under 8.1 (expecting @max/@min) would crash with undefined method '<=' for nil because Marshal.load restores instance variables without calling initialize.

... (truncated)

Commits
  • fa8f081 Preparing for 8.1.3 release
  • 63cef3d Merge branch '8-1-sec' into 8-1-stable
  • 1db4b89 Preparing for 8.1.2.1 release
  • 1c7d1cf Update changelog
  • e91694b Update CHANGELOG (8.1 only)
  • 6752711 Fix XSS in debug exceptions copy-to-clipboard
  • 63f5ad8 Skip blank attribute names in Action View tag helpers
  • 8c9676b Prevent glob injection in ActiveStorage DiskService#delete_prefixed
  • 9b06fbc Prevent path traversal in ActiveStorage DiskService
  • ec1a0e2 Improve performance of NumberToDelimitedConverter
  • Additional commits viewable in compare view

Updates mocha from 3.0.2 to 3.1.0

Changelog

Sourced from mocha's changelog.

3.1.0

External changes

  • Format warnings consistently and include source location (#794)

Internal changes

  • Fix Style/OneClassPerFile violations (#796)
  • Remove mise.toml which was added accidentally (6c5f84db)
  • Add .ruby-version to .gitignore (8516ccc1)
Commits
  • 3d08fea [skip ci] Update documentation for v3.1.0
  • 55b7113 Bump version to 3.1.0 & prepare for release
  • 84ff8a2 Merge pull request #794 from freerange/format-warnings-consistently-and-inclu...
  • c569071 Make Expectation#definition_location consistent
  • 8e2c12a Exclude source code from deprecation warning
  • 69f93fa Extract BacktraceFilter#exclude?
  • 0251ec1 Rename block variable from location -> line
  • 88e22e4 Move source location to end of warning message
  • 1713bfc Display source location for all warnings
  • e5a8e7b Distinguish deprecation warnings in tests
  • Additional commits viewable in compare view

Updates minitest from 6.0.2 to 6.0.3

Changelog

Sourced from minitest's changelog.

=== 6.0.3 / 2026-03-31

  • 1 bug fix:

    • assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (paddor)
Commits
  • 649b075 prepped for release
  • a2d0904 - assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (...
  • See full diff in compare view

Updates rubocop from 1.85.1 to 1.86.0

Release notes

Sourced from rubocop's releases.

RuboCop v1.86.0

New features

Bug fixes

  • #15015: Fix Style/ConcatArrayLiterals autocorrect deleting code for percent literals with interpolation. (@​bbatsov)
  • #14897: Detect constant reassignment after class/module definition in Lint/ConstantReassignment. (@​ydakuka)
  • #11829: Fix false negatives for Lint/DuplicateMethods when duplicate methods are defined in anonymous classes and modules not assigned to a constant. (@​Darhazer)
  • #14988: Fix false negative in Style/RedundantParentheses when redundant parentheses around range literals in block body. (@​koic)
  • #14916: Fix false positive for Layout/MultilineMethodCallIndentation when method chain is inside a hash pair value passed to a multiline chained method call. (@​ydakuka)
  • #15010: Fix a false positive for Lint/DuplicateMethods when modules blocks are passed as method arguments. (@​5hun-s)
  • #15028: Fix a false positive for Lint/DuplicateMethods when the same method is defined in different anonymous module blocks passed to a no-receiver call (e.g. stub_const). (@​Darhazer)
  • #15021: Fix false positives in Layout/EmptyLineAfterGuardClause when using a guard clause followed by a multi-line guard clause with raise, fail, return, break, or next. (@​koic)
  • #15001: Fix false positives in Layout/RedundantLineBreak when setting InspectBlocks: true and using rescue or ensure in the block. (@​koic)
  • #14997: Fix false positives in Style/FileOpen when assigning File.open to an instance variable, class variable, global variable, or constant. (@​koic)
  • #15019: Fix false positives in Lint/DuplicateMethods when the same method is defined in anonymous module blocks passed to different receivers. (@​koic)
  • #14987: Complete ERB and Haml autocorrection in a single run. (@​alpaca-tc)
  • #15039: Fix incorrect autocorrect in Style/IfWithSemicolon when return with value is in the else branch. (@​koic)
  • #14930: Fix incorrect autocorrection for Style/IfUnlessModifier when multiple if/unless modifier forms are on the same line inside a collection. (@​ydakuka)
  • #14985: Fix incorrect autocorrection in Lint/SafeNavigationChain when chaining a method call after safe navigation in the if branch of a ternary. (@​koic)
  • #15009: Fix infinite loop in Layout/EndAlignment when end is followed by || or &&. (@​koic)
  • #14981: Fix spurious warning "does not support Safe/SafeAutoCorrect parameter" when those parameters are set for cops that don't have them in their default configuration. ([@​dduugg][])
  • #15043: Fix an error for Lint/UselessDefaultValueArgument when fetch without a receiver is inside a fetch block. (@​koic)
  • #15034: Fix incorrect autocorrection in Style/IfWithSemicolon when using single-line unless / ; / end. (@​koic)
  • #15015: Fix Style/NonNilCheck autocorrect for receivers containing spaces. (@​bbatsov)
  • #15015: Fix Style/RaiseArgs to allow anonymous keyword forwarding (raise Ex.new(**)). (@​bbatsov)
  • #14890: Fix a false positive for Lint/RedundantCopDisableDirective when a rubocop:disable comment is used to suppress Lint/EmptyWhen, Lint/EmptyConditionalBody, Lint/EmptyInPattern, or Style/SymbolProc. ([@​eugeneius][])
  • #15015: Fix false negative in Style/RedundantPercentQ for %q strings with interpolation-like syntax. (@​bbatsov)
  • #14984: Fix Style/AndOr adding unnecessary parentheses around return without arguments. ([@​eugeneius][])
  • #14945: Support files with multiple modifiers in Lint/UselessConstantScoping. ([@​h-lame][])
  • #15015: Fix Style/TrailingMethodEndStatement to detect singleton methods (def self.foo). (@​bbatsov)
  • #10822: Don't store results in cache if there are warnings. ([@​jonas054][])

Changes

  • #14718: Allow setting MaxFilesInCache to false to entirely disable cache pruning. ([@​byroot][])
  • #14989: Make Lint/RedundantSafeNavigation aware of safe navigation in conditional true branch. (@​koic)
  • #15041: Remove mcp gem from runtime dependencies. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.86.0 (2026-03-23)

New features

Bug fixes

  • #15015: Fix Style/ConcatArrayLiterals autocorrect deleting code for percent literals with interpolation. ([@​bbatsov][])
  • #14897: Detect constant reassignment after class/module definition in Lint/ConstantReassignment. ([@​ydakuka][])
  • #11829: Fix false negatives for Lint/DuplicateMethods when duplicate methods are defined in anonymous classes and modules not assigned to a constant. ([@​Darhazer][])
  • #14988: Fix false negative in Style/RedundantParentheses when redundant parentheses around range literals in block body. ([@​koic][])
  • #14916: Fix false positive for Layout/MultilineMethodCallIndentation when method chain is inside a hash pair value passed to a multiline chained method call. ([@​ydakuka][])
  • #15010: Fix a false positive for Lint/DuplicateMethods when modules blocks are passed as method arguments. ([@​5hun-s][])
  • #15028: Fix a false positive for Lint/DuplicateMethods when the same method is defined in different anonymous module blocks passed to a no-receiver call (e.g. stub_const). ([@​Darhazer][])
  • #15021: Fix false positives in Layout/EmptyLineAfterGuardClause when using a guard clause followed by a multi-line guard clause with raise, fail, return, break, or next. ([@​koic][])
  • #15001: Fix false positives in Layout/RedundantLineBreak when setting InspectBlocks: true and using rescue or ensure in the block. ([@​koic][])
  • #14997: Fix false positives in Style/FileOpen when assigning File.open to an instance variable, class variable, global variable, or constant. ([@​koic][])
  • #15019: Fix false positives in Lint/DuplicateMethods when the same method is defined in anonymous module blocks passed to different receivers. ([@​koic][])
  • #14987: Complete ERB and Haml autocorrection in a single run. ([@​alpaca-tc][])
  • #15039: Fix incorrect autocorrect in Style/IfWithSemicolon when return with value is in the else branch. ([@​koic][])
  • #14930: Fix incorrect autocorrection for Style/IfUnlessModifier when multiple if/unless modifier forms are on the same line inside a collection. ([@​ydakuka][])
  • #14985: Fix incorrect autocorrection in Lint/SafeNavigationChain when chaining a method call after safe navigation in the if branch of a ternary. ([@​koic][])
  • #15009: Fix infinite loop in Layout/EndAlignment when end is followed by || or &&. ([@​koic][])
  • #14981: Fix spurious warning "does not support Safe/SafeAutoCorrect parameter" when those parameters are set for cops that don't have them in their default configuration. ([@​dduugg][])
  • #15043: Fix an error for Lint/UselessDefaultValueArgument when fetch without a receiver is inside a fetch block. ([@​koic][])
  • #15034: Fix incorrect autocorrection in Style/IfWithSemicolon when using single-line unless / ; / end. ([@​koic][])
  • #15015: Fix Style/NonNilCheck autocorrect for receivers containing spaces. ([@​bbatsov][])
  • #15015: Fix Style/RaiseArgs to allow anonymous keyword forwarding (raise Ex.new(**)). ([@​bbatsov][])
  • #14890: Fix a false positive for Lint/RedundantCopDisableDirective when a rubocop:disable comment is used to suppress Lint/EmptyWhen, Lint/EmptyConditionalBody, Lint/EmptyInPattern, or Style/SymbolProc. ([@​eugeneius][])
  • #15015: Fix false negative in Style/RedundantPercentQ for %q strings with interpolation-like syntax. ([@​bbatsov][])
  • #14984: Fix Style/AndOr adding unnecessary parentheses around return without arguments. ([@​eugeneius][])
  • #14945: Support files with multiple modifiers in Lint/UselessConstantScoping. ([@​h-lame][])
  • #15015: Fix Style/TrailingMethodEndStatement to detect singleton methods (def self.foo). ([@​bbatsov][])
  • #10822: Don't store results in cache if there are warnings. ([@​jonas054][])

Changes

  • #14718: Allow setting MaxFilesInCache to false to entirely disable cache pruning. ([@​byroot][])
  • #14989: Make Lint/RedundantSafeNavigation aware of safe navigation in conditional true branch. ([@​koic][])
  • #15041: Remove mcp gem from runtime dependencies. ([@​koic][])
Commits
  • 2c1b30a Cut 1.86
  • d96701a Update Changelog
  • 9b019c7 [Fix rubocop#14916] Fix false positive for `Layout/MultilineMethodCallIndenta...
  • a49271d Fix incorrect autocorrection for Style/IfUnlessModifier when multiple if/...
  • 8d25311 Document MaxFilesInCache: false option for disabling cache pruning
  • 12c7d39 Detect constant reassignment after class/module definition in `Lint/ConstantR...
  • fbf175c Allow disabling cache cleanup
  • 3fcae5d [Fix #14961] Add AllowedParentClasses option to Style/EmptyClassDefinition
  • 4eba3e6 Memoize forwarded arg lookups in ArgumentsForwarding
  • fc300c7 [Fix #10822] Don't cache if there are warnings
  • Additional commits viewable in compare view

Updates actionpack from 8.1.2 to 8.1.3

Release notes

Sourced from actionpack's releases.

8.1.3

Active Support

  • Fix JSONGemCoderEncoder to correctly serialize custom object hash keys.

    When hash keys are custom objects whose as_json returns a Hash, the encoder now calls to_s on the original key object instead of on the as_json result.

    Before: hash = {CustomKey.new(123) => "value"} hash.to_json # => {"{:id=>123}":"value"}

    After: hash.to_json # => {"custom_123":"value"}

    Dan Sharp

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

Active Model

  • Fix Ruby 4.0 delegator warning when calling inspect on attributes.

    Hammad Khan

  • Fix NoMethodError when deserialising Type::Integer objects marshalled under Rails 8.0.

    The performance optimisation that replaced @range with @max/@min broke Marshal compatibility. Objects serialised under 8.0 (with @range) and deserialised under 8.1 (expecting @max/@min) would crash with undefined method '<=' for nil because Marshal.load restores instance variables without calling initialize.

... (truncated)

Changelog

Sourced from actionpack's changelog.

Rails 8.1.3 (March 24, 2026)

  • No changes.

Rails 8.1.2.1 (March 23, 2026)

  • No changes.
Commits
  • fa8f081 Preparing for 8.1.3 release
  • 63cef3d Merge branch '8-1-sec' into 8-1-stable
  • 1db4b89 Preparing for 8.1.2.1 release
  • 6752711 Fix XSS in debug exceptions copy-to-clipboard
  • 10c6e0e Merge pull request #56750 from nicolasva/fix/UnknownHttpMethod
  • cce61db Merge pull request #56820 from ybiquitous/improve-apidoc-for-ActionDispatch_I...
  • See full diff in compare view

Updates railties from 8.1.2 to 8.1.3

Release notes

Sourced from railties's releases.

8.1.3

Active Support

  • Fix JSONGemCoderEncoder to correctly serialize custom object hash keys.

    When hash keys are custom objects whose as_json returns a Hash, the encoder now calls to_s on the original key object instead of on the as_json result.

    Before: hash = {CustomKey.new(123) => "value"} hash.to_json # => {"{:id=>123}":"value"}

    After: hash.to_json # => {"custom_123":"value"}

    Dan Sharp

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

Active Model

  • Fix Ruby 4.0 delegator warning when calling inspect on attributes.

    Hammad Khan

  • Fix NoMethodError when deserialising Type::Integer objects marshalled under Rails 8.0.

    The performance optimisation that replaced @range with @max/@min broke Marshal compatibility. Objects serialised under 8.0 (with @range) and deserialised under 8.1 (expecting @max/@min) would crash with undefined method '<=' for nil because Marshal.load restores instance variables without calling initialize.

... (truncated)

Changelog

Sourced from railties's changelog.

Rails 8.1.3 (March 24, 2026)

  • Add libvips to generated ci.yml

    Conditionally adds libvips to ci.yml.

    Steve Polito

Rails 8.1.2.1 (March 23, 2026)

  • No changes.
Commits
  • fa8f081 Preparing for 8.1.3 release
  • 63cef3d Merge branch '8-1-sec' into 8-1-stable
  • 1db4b89 Preparing for 8.1.2.1 release
  • 635841a Merge pull request #56911 from toy/postgresql-9.5-required
  • b8f4e47 Merge pull request #53417 from vinibispo/fix/skip_storage-changes-gitignore
  • 6b0ebde Merge pull request #56693 from r7kamura/configuration-duplicated-if
  • 54aa1c5 Merge pull request #56523 from stevepolitodesign/sp-cl-libvips
  • See full diff in compare view

Bumps the bundler group in /gemfiles/rails_80 with 5 updates:

Package From To
rails 8.0.4 8.0.5
mocha 3.0.2 3.1.0
minitest 6.0.2 6.0.3
actionpack 8.0.4 8.0.5
railties 8.0.4 8.0.5

Updates rails from 8.0.4 to 8.0.5

Release notes

Sourced from rails's releases.

8.0.5

Active Support

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

  • Make delegate and delegate_missing_to work in BasicObject subclasses.

    Rafael Mendonça França

  • Fix ActiveSupport::Inflector.humanize with international characters.

    ActiveSupport::Inflector.humanize("áÉÍÓÚ")  # => "Áéíóú"
    ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"

    Jose Luis Duran

Active Model

  • No changes.

Active Record

  • Fix insert_all and upsert_all log message when called on anonymous classes.

    Gabriel Sobrinho

  • Respect ActiveRecord::SchemaDumper.ignore_tables when dumping SQLite virtual tables.

    Hans Schnedlitz

  • Restore previous instrumenter after execute_or_skip

... (truncated)

Commits
  • eb126bb Preparing for 8.0.5 release
  • f7fe4a5 Merge branch '8-0-sec' into 8-0-stable
  • a79efed Preparing for 8.0.4.1 release
  • ac7979b Update changelog
  • c79a07d Skip blank attribute names in Action View tag helpers
  • 955284d Prevent glob injection in ActiveStorage DiskService#delete_prefixed
  • a290c8a Prevent path traversal in ActiveStorage DiskService
  • 29154f1 Improve performance of NumberToDelimitedConverter
  • 6e8a811 Fix SafeBuffer#% to preserve unsafe status
  • 8fcb934 Active Storage: Filter user supplied metadata in DirectUploadController
  • Additional commits viewable in compare view

Updates mocha from 3.0.2 to 3.1.0

Changelog

Sourced from mocha's changelog.

3.1.0

External changes

  • Format warnings consistently and include source location (#794)

Internal changes

  • Fix Style/OneClassPerFile violations (#796)
  • Remove mise.toml which was added accidentally (6c5f84db)
  • Add .ruby-version to .gitignore (8516ccc1)
Commits
  • 3d08fea [skip ci] Update documentation for v3.1.0
  • 55b7113 Bump version to 3.1.0 & prepare for release
  • 84ff8a2 Merge pull request #794 from freerange/format-warnings-consistently-and-inclu...
  • c569071 Make Expectation#definition_location consistent
  • 8e2c12a Exclude source code from deprecation warning
  • 69f93fa Extract BacktraceFilter#exclude?
  • 0251ec1 Rename block variable from location -> line
  • 88e22e4 Move source location to end of warning message
  • 1713bfc Display source location for all warnings
  • e5a8e7b Distinguish deprecation warnings in tests
  • Additional commits viewable in compare view

Updates minitest from 6.0.2 to 6.0.3

Changelog

Sourced from minitest's changelog.

=== 6.0.3 / 2026-03-31

  • 1 bug fix:

    • assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (paddor)
Commits
  • 649b075 prepped for release
  • a2d0904 - assert_same(nil, value) no longer allowed. Use assert_nil to be explicit. (...
  • See full diff in compare view

Updates actionpack from 8.0.4 to 8.0.5

Release notes

Sourced from actionpack's releases.

8.0.5

Active Support

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

  • Make delegate and delegate_missing_to work in BasicObject subclasses.

    Rafael Mendonça França

  • Fix ActiveSupport::Inflector.humanize with international characters.

    ActiveSupport::Inflector.humanize("áÉÍÓÚ")  # => "Áéíóú"
    ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"

    Jose Luis Duran

Active Model

  • No changes.

Active Record

  • Fix insert_all and upsert_all log message when called on anonymous classes.

    Gabriel Sobrinho

  • Respect ActiveRecord::SchemaDumper.ignore_tables when dumping SQLite virtual tables.

    Hans Schnedlitz

  • Restore previous instrumenter after execute_or_skip

... (truncated)

Commits
  • eb126bb Preparing for 8.0.5 release
  • f7fe4a5 Merge branch '8-0-sec' into 8-0-stable
  • a79efed Preparing for 8.0.4.1 release
  • ee0d551 Merge pull request #56750 from nicolasva/fix/UnknownHttpMethod
  • b88278f Merge pull request #56820 from ybiquitous/improve-apidoc-for-ActionDispatch_I...
  • f9afdbe Merge pull request #56440 from zzak/ac-live-streaming-keys-typo
  • ec62932 [8-0-stable] Minitest 6 support
  • 6355f48 Merge pull request #56393 from rails/add-exclude-keys-to-live-controller
  • See full diff in compare view

Updates railties from 8.0.4 to 8.0.5

Release notes

Sourced from railties's releases.

8.0.5

Active Support

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

  • Make delegate and delegate_missing_to work in BasicObject subclasses.

    Rafael Mendonça França

  • Fix ActiveSupport::Inflector.humanize with international characters.

    ActiveSupport::Inflector.humanize("áÉÍÓÚ")  # => "Áéíóú"
    ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"

    Jose Luis Duran

Active Model

  • No changes.

Active Record

  • Fix insert_all and upsert_all log message when called on anonymous classes.

    Gabriel Sobrinho

  • Respect ActiveRecord::SchemaDumper.ignore_tables when dumping SQLite virtual tables.

    Hans Schnedlitz

  • Restore previous instrumenter after execute_or_skip

... (truncated)

Commits

Bumps the bundler group in /gemfiles/rails_70 with 1 update: mocha.

Updates mocha from 3.0.2 to 3.1.0

Changelog

Sourced from mocha's changelog.

3.1.0

External changes

  • Format warnings consistently and include source location (#794)

Internal changes

  • Fix Style/OneClassPerFile violations (#796)
  • Remove mise.toml which was added accidentally (6c5f84db)
  • Add .ruby-version to .gitignore (8516ccc1)
Commits
  • 3d08fea [skip ci] Update documentation for v3.1.0
  • 55b7113 Bump version to 3.1.0 & prepare for release
  • 84ff8a2 Merge pull request #794 from freerange/format-warnings-consistently-and-inclu...
  • c569071 Make Expectation#definition_location consistent
  • 8e2c12a Exclude source code from deprecation warning
  • 69f93fa Extract BacktraceFilter#exclude?
  • 0251ec1 Rename block variable from location -> line
  • 88e22e4 Move source location to end of warning message
  • 1713bfc Display source location for all warnings
  • e5a8e7b Distinguish deprecation warnings in tests
  • Additional commits viewable in compare view

Bumps the bundler group in /gemfiles/rails_72 with 1 update: mocha.

Updates mocha from 3.0.2 to 3.1.0

Changelog

Sourced from mocha's changelog.

3.1.0

External changes

  • Format warnings consistently and include source location (#794)

Internal changes

  • Fix Style/OneClassPerFile violations (#796)
  • Remove mise.toml which was added accidentally (6c5f84db)
  • Add .ruby-version to .gitignore (8516ccc1)
Commits
  • 3d08fea [skip ci] Update documentation for v3.1.0
  • 55b7113 Bump version to 3.1.0 & prepare for release
  • 84ff8a2 Merge pull request #794 from freerange/format-warnings-consistently-and-inclu...
  • c569071 Make Expectation#definition_location consistent
  • 8e2c12a Exclude source code from deprecation warning
  • 69f93fa Extract BacktraceFilter#exclude?
  • 0251ec1 Rename block variable from location -> line
  • 88e22e4 Move source location to end of warning message
  • 1713bfc Display source location for all warnings
  • e5a8e7b Distinguish deprecation warnings in tests
  • Additional commits viewable in compare view

Bumps the bundler group in /gemfiles/rails_71 with 1 update: mocha.

Updates mocha from 3.0.2 to 3.1.0

Changelog

Sourced from mocha's changelog.

3.1.0

External changes

  • Format warnings consistently and include source location (#794)

Internal changes

  • Fix Style/OneClassPerFile violations (#796)
  • Remove mise.toml which was added accidentally (6c5f84db)
  • Add .ruby-version to .gitignore (8516ccc1)
Commits
  • 3d08fea [skip ci] Update documentation for v3.1.0
  • 55b7113 Bump version to 3.1.0 & prepare for release
  • 84ff8a2 Merge pull request #794 from freerange/format-warnings-consistently-and-inclu...
  • c569071 Make Expectation#definition_location consistent
  • 8e2c12a Exclude source code from deprecation warning
  • 69f93fa Extract BacktraceFilter#exclude?
  • 0251ec1 Rename block variable from location -> line
  • 88e22e4 Move source location to end of warning message
  • 1713bfc Display source location for all warnings
  • e5a8e7b Distinguish deprecation warnings in tests
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the bundler group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [rails](https://github.com/rails/rails) | `8.1.2` | `8.1.3` |
| [mocha](https://github.com/freerange/mocha) | `3.0.2` | `3.1.0` |
| [minitest](https://github.com/minitest/minitest) | `6.0.2` | `6.0.3` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.85.1` | `1.86.0` |
| [actionpack](https://github.com/rails/rails) | `8.1.2` | `8.1.3` |
| [railties](https://github.com/rails/rails) | `8.1.2` | `8.1.3` |


Updates `rails` from 8.1.2 to 8.1.3
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v8.1.2...v8.1.3)

Updates `mocha` from 3.0.2 to 3.1.0
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v3.0.2...v3.1.0)

Updates `minitest` from 6.0.2 to 6.0.3
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v6.0.2...v6.0.3)

Updates `rubocop` from 1.85.1 to 1.86.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.85.1...v1.86.0)

Updates `actionpack` from 8.1.2 to 8.1.3
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.1.3/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v8.1.2...v8.1.3)

Updates `railties` from 8.1.2 to 8.1.3
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.1.3/railties/CHANGELOG.md)
- [Commits](rails/rails@v8.1.2...v8.1.3)
Bump the bundler group in /gemfiles/rails_80 with 5 updates

Bumps the bundler group in /gemfiles/rails_80 with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [rails](https://github.com/rails/rails) | `8.0.4` | `8.0.5` |
| [mocha](https://github.com/freerange/mocha) | `3.0.2` | `3.1.0` |
| [minitest](https://github.com/minitest/minitest) | `6.0.2` | `6.0.3` |
| [actionpack](https://github.com/rails/rails) | `8.0.4` | `8.0.5` |
| [railties](https://github.com/rails/rails) | `8.0.4` | `8.0.5` |


Updates `rails` from 8.0.4 to 8.0.5
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v8.0.4...v8.0.5)

Updates `mocha` from 3.0.2 to 3.1.0
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v3.0.2...v3.1.0)

Updates `minitest` from 6.0.2 to 6.0.3
- [Changelog](https://github.com/minitest/minitest/blob/master/History.rdoc)
- [Commits](minitest/minitest@v6.0.2...v6.0.3)

Updates `actionpack` from 8.0.4 to 8.0.5
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.1.3/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v8.0.4...v8.0.5)

Updates `railties` from 8.0.4 to 8.0.5
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.1.3/railties/CHANGELOG.md)
- [Commits](rails/rails@v8.0.4...v8.0.5)
Bump mocha in /gemfiles/rails_70 in the bundler group

Bumps the bundler group in /gemfiles/rails_70 with 1 update: [mocha](https://github.com/freerange/mocha).


Updates `mocha` from 3.0.2 to 3.1.0
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v3.0.2...v3.1.0)
Bump mocha in /gemfiles/rails_72 in the bundler group

Bumps the bundler group in /gemfiles/rails_72 with 1 update: [mocha](https://github.com/freerange/mocha).


Updates `mocha` from 3.0.2 to 3.1.0
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v3.0.2...v3.1.0)
Bump mocha in /gemfiles/rails_71 in the bundler group

Bumps the bundler group in /gemfiles/rails_71 with 1 update: [mocha](https://github.com/freerange/mocha).


Updates `mocha` from 3.0.2 to 3.1.0
- [Changelog](https://github.com/freerange/mocha/blob/main/RELEASE.md)
- [Commits](freerange/mocha@v3.0.2...v3.1.0)

---
updated-dependencies:
- dependency-name: rails
  dependency-version: 8.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: mocha
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: minitest
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: rubocop
  dependency-version: 1.86.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: actionpack
  dependency-version: 8.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: railties
  dependency-version: 8.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: rails
  dependency-version: 8.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: mocha
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: minitest
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: actionpack
  dependency-version: 8.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: railties
  dependency-version: 8.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bundler
- dependency-name: mocha
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: mocha
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
- dependency-name: mocha
  dependency-version: 3.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bundler
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Apr 1, 2026
@codecov
Copy link
Copy Markdown

codecov Bot commented Apr 1, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.93%. Comparing base (cd82b8c) to head (0def3ee).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #998   +/-   ##
=======================================
  Coverage   98.93%   98.93%           
=======================================
  Files          14       14           
  Lines         563      563           
=======================================
  Hits          557      557           
  Misses          6        6           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@tagliala tagliala merged commit 5f7b257 into master Apr 1, 2026
22 checks passed
@tagliala tagliala deleted the dependabot/bundler-abb4754b92 branch April 1, 2026 09:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant